home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / bipl.zip / PROCS.ZIP / INSERTS.ICN < prev    next >
Text File  |  1992-09-28  |  676b  |  23 lines

  1. ############################################################################
  2. #
  3. #    File:     inserts.icn
  4. #
  5. #    Subject:  Procedures to build tables with duplicate keys
  6. #
  7. #    Author:   Robert J. Alexander
  8. #
  9. #    Date:     September 7, 1990
  10. #
  11. ###########################################################################
  12. #
  13. #  inserts() -- Inserts values into a table in which the same key can
  14. #  have more than one value (i.e., duplicate keys).  The value of each
  15. #  element is a list of inserted values.  The table must be created
  16. #  with default value &null.
  17. #
  18.  
  19. procedure inserts(tabl,key,value)
  20.    (/tabl[key] := [value]) | put(tabl[key],value)
  21.    return tabl
  22. end
  23.